sub infix:</>

Documentation for sub infix:</> assembled from the following types:

class Range

From Range

(Range) sub infix:</>

multi sub infix:</>(Range:D \r, Real:D \v)

Takes an Real and divide both boundaries of the Range object by that number.

say (2..4) / 2; # OUTPUT: «1..2␤»